home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmLoad
- BorderStyle = 3 'Fixed Double
- Caption = "Load"
- ClientHeight = 1890
- ClientLeft = 4560
- ClientTop = 3630
- ClientWidth = 3435
- ClipControls = 0 'False
- Height = 2295
- Left = 4500
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1890
- ScaleWidth = 3435
- Top = 3285
- Width = 3555
- Begin CommandButton cmdCancel
- Cancel = -1 'True
- Caption = "Cancel"
- Height = 330
- Left = 1875
- TabIndex = 3
- Top = 1395
- Width = 1140
- End
- Begin CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 330
- Left = 450
- TabIndex = 2
- Top = 1395
- Width = 1140
- End
- Begin OptionButton optMaster
- Caption = "Load Master Bitmap"
- Height = 285
- Left = 750
- TabIndex = 1
- Top = 855
- Width = 2115
- End
- Begin OptionButton optIndi
- Caption = "Load Individual File"
- Height = 285
- Left = 750
- TabIndex = 0
- Top = 315
- Width = 2040
- End
- Option Explicit
- Sub cmdCancel_Click ()
- frmLoad.Hide
- End Sub
- Sub cmdOK_Click ()
- If OptIndi Then
- frmLoad.Tag = 1
- ElseIf OptMaster Then
- frmLoad.Tag = 2
- Else
- MsgBox "Nothing Selected"
- Exit Sub
- End If
- frmLoad.Hide
- End Sub
- Sub Form_Load ()
- Position_Form frmLoad
- End Sub
- Sub optIndi_DblClick ()
- cmdOK_Click
- End Sub
- Sub optMaster_DblClick ()
- cmdOK_Click
- End Sub
-